what is meta data in MSIL?
2654
20-Oct-2010
hanmandlu vasani
11-Apr-2014Metadata is binary information describing your program that is stored either in a common language runtime portable executable (PE) file or in memory.
When you compile your code into a PE file, metadata is inserted into one portion of the file, and your code is converted to Microsoft intermediate language (MSIL) and inserted into another portion of the file.
When a compiler produces MSIL, it also produces Metadata
Pushpendra Singh
30-Oct-2010